home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-12-16 | 26.4 KB | 854 lines | [TEXT/ALFA] |
- ## -*-Tcl-*-
- # ###################################################################
- # Alpha - new Tcl folder configuration
- #
- # FILE: "menusAndKeys.tcl"
- # created: 12/9/97 {1:43:22 pm}
- # last update: 16/12/1998 {2:13:45 pm}
- # Author: Vince Darley
- # E-mail: <darley@fas.harvard.edu>
- # mail: Division of Engineering and Applied Sciences, Harvard University
- # Oxford Street, Cambridge MA 02138, USA
- # www: <http://www.fas.harvard.edu/~darley/>
- #
- # Reorganisation carried out by Vince Darley with much help from Tom
- # Fetherston, Johan Linde and suggestions from the Alpha-D mailing list.
- # Alpha is shareware; please register with the author using the register
- # button in the about box.
- #
- #
- # modified by rev reason
- # -------- --- --- -----------
- # 27/11/97 FBO x.x make keys::keyboardChanged use one more item in keyboards
- # ###################################################################
- ##
-
- namespace eval menu {}
- namespace eval keys {}
- namespace eval bind {}
-
- ##
- # -------------------------------------------------------------------------
- #
- # "menu::bind" --
- #
- # Convert a preference of type 'binding' or 'menubinding' into a code
- # to be inserted into a menu. Menu-bindings are guaranteed to succeed.
- # If an ordinary binding contains a prefixChar (e.g. you have bound
- # ctrl-c followed by ctrl-x to something), then this procedure will
- # return an empty string, since such bindings cannot appear in menus.
- # Finally if it is a key-binding and it does not contain a modifier
- # key, and the key is a normal key (not F1-F12 + few others), then
- # it will appear in the menu, but the menu will not activate with
- # that key. On MacOS, menus can only activate with key-presses
- # which include a modifier.
- #
- # Example usage (from the modeSearchPaths package):
- #
- # newPref binding openSelection "<O<B/H" searchPaths
- # newPref binding sourceHeaderToggle "<O/f" searchPaths
- # menu::addTo fileUtils \
- # "[menu::bind searchPathsmodeVars(sourceHeaderToggle) -]" \
- # "[menu::bind searchPathsmodeVars(openSelection) -]"
- #
- # You can adjust these bindings in the package preferences dialog,
- # but changes will not take effect until you restart Alpha. Note
- # that if the user selected menu-incompatible bindings, they would
- # not operate without the addition of some code to Bind them. One
- # would need to add this:
- #
- # eval Bind \
- # [keys::toBind $searchPathsmodeVars(sourceHeaderToggle)] \
- # file::sourceHeaderToggle
- #
- # The optional arg is the rest of the menu item or '-' which means
- # use the variable name (if a var) or array element (if an array).
- #
- # If the optional argument is given, and the menu item therefore
- # contains a '/', it is considered to be two dynamic items, the
- # second of which requires the option key to be used.
- #
- # Similarly '//' means use shift, '///' means shift-option,
- # For instance 'set v /W<O ; menu::bind v close/closeAll//closeFloat'
- # would give you the menu-item for 'close' in the file menu.
- # -------------------------------------------------------------------------
- ##
- proc menu::bind {var {item ""}} {
- upvar \#0 $var a
- if {[regexp {«(.*)»} $a]} { set ret "" } else { set ret $a }
- if {$item != ""} {
- if {$item == "-"} {
- regsub -all {([a-zA-Z_:]+\(|\))} $var {} item
- }
- if {[regexp {/} $item]} {
- set item "<S<E<K$item"
- regsub {///} $item " <S<I<U<K" item
- regsub {//} $item " <S<U<K" item
- regsub {/} $item " <S<I<K" item
- regsub -all {<K} $item $ret ret
- } else {
- append ret $item
- }
- }
- return $ret
- }
-
- # ◊◊◊◊ flags-menus from prefs ◊◊◊◊ #
- # The following four procs allow you to create flag menus with ticks
- # very simply. They adhere to the basic idea of the 'newPref' facility.
- proc menu::makeFlagDummy {name {type list}} {
- switch -- $type {
- "array" {
- return [list Menu -n $name -p menu::flagProc {}]
- }
- "list" {
- return [list Menu -m -n $name -p menu::flagProc {}]
- }
- }
- }
-
- proc menu::makeFlagMenu {name {type list} {var ""} {in_array ""} \
- {nonFlagProc ""} {prologue ""} {epilogue ""}} {
- if {$var == ""} { set var $name }
- switch -- $type {
- "array" {
- global $var menu::flagArray allFlags
- set menu::flagArray($name) \
- [list "array" $var "" $nonFlagProc]
- foreach i [lsort [array names $var]] {
- if {[lsearch -exact $allFlags $i] != -1} {
- lappend items [lindex [list "$i" "!•$i"] [set ${var}($i)]]
- }
- }
- if {[info tclversion] >= 8.0} {
- return [list Menu -t checkbutton -n $name -p menu::flagProc $items]
- } else {
- return [list Menu -n $name -p menu::flagProc $items]
- }
- }
- "list" {
- global $var menu::flagArray
- if {$in_array != ""} {
- set menu::flagArray($name) [list "list" $in_array $var $nonFlagProc]
- global $in_array
- set val [set ${in_array}($var)]
- } else {
- set menu::flagArray($name) \
- [list "list" $var "" $nonFlagProc]
- set val [set $var]
- }
- set i [lsearch -exact [set items [flag::options $var]] $val]
- if {$i != -1} {
- set items [lreplace $items $i $i "!•[lindex $items $i]"]
- }
- if {$prologue != ""} {
- set items [concat $prologue [expr {[llength $items] ? {(-} : ""}] $items]
- }
- if {$epilogue != ""} {
- set items [concat $items [expr {[llength $items] ? {(-} : ""}] $epilogue]
- }
- if {[info tclversion] >= 8.0} {
- return [list Menu -m -t radiobutton -n $name -p menu::flagProc $items]
- } else {
- return [list Menu -m -n $name -p menu::flagProc $items]
- }
- }
- default {
- error "Other types not yet supported"
- }
- }
- }
-
- proc menu::stripMetaChars {menuItems} {
- set strippedItems ""
-
- foreach menuItem $menuItems {
- regsub -all {<(B|I|U|O|S|E)} $menuItem "" menuItem
- regsub -all {/.} $menuItem "" menuItem
- regsub -all {!.} $menuItem "" menuItem
- regsub -all {\^.} $menuItem "" menuItem
- regsub -all {…$} $menuItem "" menuItem
- lappend strippedItems $menuItem
- }
-
- return $strippedItems
- }
-
- proc menu::buildFlagMenu {name args} {
- eval [eval menu::makeFlagMenu [list $name] $args]
- }
-
- proc menu::flagProc {menu flag} {
- global menu::flagArray flag::procs modifiedArrayElements modifiedVars
- set type [set menu::flagArray($menu)]
-
- set name [lindex $type 1]
- upvar \#0 $name a
- switch -- [lindex $type 0] {
- "array" {
- if {[lsearch -exact [array names a] $flag] == -1} {
- [lindex $type 3] $menu $flag
- } else {
- set a($flag) [expr {1 - $a($flag)}]
- if {[info exists flag::procs($flag)]} {
- [set flag::procs($flag)] $flag
- }
- message "$menu item '$flag' set to $a($flag)"
- markMenuItem $menu $flag $a($flag)
- lunion modifiedArrayElements [list $flag $name]
- }
- }
- "list" {
- # array entries are indexed by the '2' element.
- if {[set var [lindex $type 2]] == ""} { set var $name }
-
- if {[lsearch -exact [flag::options $var] $flag] == -1} {
- [lindex $type 3] $menu $flag
- } else {
- if {[set b [lindex $type 2]] == ""} {
- markMenuItem $menu $a off
- set a $flag
- lunion modifiedVars [lindex $type 1]
- message "[lindex $type 1] set to $flag"
- } else {
- markMenuItem $menu $a($b) off
- set a($b) $flag
- lunion modifiedArrayElements [list [lindex $type 2] [lindex $type 1]]
- message "$menu set to $flag"
- }
- markMenuItem $menu $flag on
- if {[info exists flag::procs([lindex $type 1])]} {
- [set flag::procs([lindex $type 1])] $flag
- }
- }
- }
- }
- }
-
- # ◊◊◊◊ Bindings ◊◊◊◊ #
-
- proc menu::bindingsFromArray {arr {include_empty 0}} {
- upvar $arr ar
- set r {}
- foreach a [array names ar] {
- if {[set b $ar($a)] != "" || $include_empty} {
- lappend r "$b$a"
- }
- }
- return $r
- }
-
- proc bind::fromArray {arr bindarr {unbind 0} {mode {}}} {
- upvar $arr ar
- upvar $bindarr br
- set r {}
- if {$unbind} {
- set bindcmd "unBind"
- } else {
- set bindcmd "Bind"
- }
- foreach a [array names ar] {
- if {[set b $ar($a)] != ""} {
- if {[info exists br($a)]} {
- catch {eval $bindcmd [keys::toBind $b] [list $br($a)] $mode}
- } else {
- beep; message "Bad bind-array entry '$a'"
- }
- }
- }
- }
-
- ###
- # -------------------------------------------------------------------------
- #
- # "keys::verboseKey" --
- #
- # Turn a string containing a menu key-code '/x' into a verbose description
- # of that key. The optional parameter declares a variable whose value
- # will be set if the key is a normal key.
- # -------------------------------------------------------------------------
- ##
- proc keys::verboseKey {kstr {normal {}}} {
- if {$normal != ""} {upvar $normal n ; set n 0}
- if {![regexp {/(Kpad)(.)} $kstr "" key pad] && ![regexp {/(.)} $kstr "" key]} { return "" }
- switch -regexp -- $key {
- {Kpad} {return "Key pad $pad"}
- {[a-z]} {
- global keys::func
- return [lindex ${keys::func} [expr {[text::Ascii $key] - 97}]]
- }
- "" {
- return "Left"
- }
- "" {
- return "Right"
- }
- "\x10" {
- return "Up"
- }
- "" {
- return "Down"
- }
- " " {
- return "Space"
- }
- default {
- set n 1
- return $key
- }
- }
- }
-
- set keys::func {Enter Return Tab "Num Lock" F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 \
- F11 F12 F13 F14 F15 Help Delete "Fwd Del" Home End "Page Up" "Page Down"}
-
- set keys::ascii {0x03 0x0d 0x09 0 0 0 0 0 0 0 0 0 0 0 \
- 0 0 0 0 0 0 0x08 0 0 0 0 0}
-
- set keys::bind {Enter 0x24 0x30 Clear F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 \
- F11 F12 F13 F14 F15 Help 0x33 Del Home End Pgup Pgdn}
-
- ##
- # -------------------------------------------------------------------------
- #
- # "keys::toBind" --
- #
- # Turn a menu key-modifier sequence into something suitable for
- # a 'bind' statement. Copes with function keys and arrow keys.
- #
- # Use a couple of strings to perform shift-mappings, so that although
- # the binding says it's bound to 'shift-1', say, in fact it must be
- # bound to '!' (or shift-'!' which are equivalent), since '!' is a
- # shifted '1'.
- #
- # You can use 'addcode' to add modifiers. Mostly useful for pairs
- # of bindings stored in a single pref in which one is an option/shift
- # modified version of the other.
- # -------------------------------------------------------------------------
- ##
- proc keys::toBind {kstr {addcode {}}} {
- if {![regexp {/(Kpad.)$} $kstr "" key] && ![regexp {/(.)} $kstr "" key]} { return "" }
- if {![string match Kpad* $key] && [regexp {[a-z]} $key]} {
- global keys::bind
- set key [lindex ${keys::bind} [expr {[text::Ascii $key] - 97}]]
- } elseif {[set i [lsearch -exact {" " "" "" "\x10" ""} $key]] != -1} {
- set key [lindex {0x31 0x7b 0x7c 0x7e 0x7d} $i]
- } elseif {![string match Kpad* $key]} {
- set key [string tolower $key]
- }
- if {[string length $key] == 1} {
- global keys::mapShiftBindFrom keys::mapShiftBindTo
- if {[regexp {[a-z]} $key] || ![regexp {^<U/} $kstr]} {
- set key '${key}'
- } elseif {[set i [string first $key ${keys::mapShiftBindFrom}]] != -1} {
- set key '[string index ${keys::mapShiftBindTo} $i]'
- } else {
- #alertnote "Weird key: $kstr, please tell Vince."
- # Note from Vince: I think it's ok just to assume we can
- # bind to the key like this, but it's possible there are
- # some problems on international keyboards. With a U.S.
- # keyboard we should NEVER get here.
- set key '${key}'
- }
- }
- global keys::international
- if {[info exists keys::international($key)]} {
- set key [set keys::international($key)]
- }
- if {[set a [keys::modifiersTo $kstr$addcode bind]] != ""} {
- return [list $key $a]
- } else {
- return [list $key]
- }
- }
-
- ##
- # -------------------------------------------------------------------------
- #
- # "keys::keyboardChanged" --
- #
- # When we change the value of 'keyboards' in the international prefs,
- # this is called, with the parameter 'keyboards'.
- #
- # It is also called at startup, with no parameter.
- #
- # Frédéric Boulanger <Frederic.Boulanger@supelec.fr> Nov 27 1997
- # Added one item to the keyboards items: a list of characters followed
- # by corresponding key codes.
- # keys::keyboardChanged now looks for these items and sets
- # keys::international to the corresponding key code for each character
- # in the first list. This is so keys::toBind returns a key code
- # instead of a character, which makes Bind only Bind the given character
- # and leave the shifted char unbound. The problem arose on a french
- # keyboard where '{' is '(' <o> and '[' is '(' <os> . Binding '(' <o>
- # to bind::LeftBrace also binds '(' <os> to bind::LeftBrace, so it was
- # impossible to type a '['. To avoid this problem, we have to Bind
- # 0x17 <o> to bind::LeftBrace, where 0x17 is the key code for '(' on a
- # french keyboard.
- # For other keyboards, I don't know the key codes, so if you have the
- # same problem with bindings, you may change the definition of your
- # keyboard in alphaDefinitions.tcl to solve it.
- # -------------------------------------------------------------------------
- ##
- proc keys::keyboardChanged {{flag "startup"}} {
- global keyboards keyboard keys::mapShiftBindFrom keys::mapShiftBindTo \
- modifiedVars oldkeyboard bind::LeftBrace bind::RightBrace keys::international
- if {$oldkeyboard != ""} {
- catch "unBind [keys::toBind ${bind::LeftBrace}] bind::LeftBrace"
- catch "unBind [keys::toBind ${bind::RightBrace}] bind::RightBrace"
- set i 0
- foreach k [lindex $keyboards($oldkeyboard) 4] {
- if {[incr i] % 2} {catch {unset keys::international($k)}}
- }
- catch {unset keys::international}
- hook::callAll removekeyboard $oldkeyboard
- }
- # set new values
- set keys::mapShiftBindFrom [lindex $keyboards($keyboard) 0]
- set keys::mapShiftBindTo [lindex $keyboards($keyboard) 1]
- set bind::LeftBrace [lindex $keyboards($keyboard) 2]
- set bind::RightBrace [lindex $keyboards($keyboard) 3]
- if {[llength $keyboards($keyboard)] >= 5} {
- array set keys::international [lindex $keyboards($keyboard) 4]
- }
- # Bind
- catch "Bind [keys::toBind ${bind::LeftBrace}] bind::LeftBrace"
- catch "Bind [keys::toBind ${bind::RightBrace}] bind::RightBrace"
- # Call anything that's been registered to the new keyboard
- # (Usually a proc to change some menu-bindings). Use:
- # hook::register keyboard "Swiss French" my-proc
- hook::callAll keyboard $keyboard
- if {$oldkeyboard != ""} {
- lappend modifiedVars keyboard
- alertnote "Changing the keyboard may require you to restart\
- Alpha for the bindings to be set correctly."
- }
- set oldkeyboard $keyboard
- }
-
- proc bind::fromPref {f {un ""}} {
- global flag::binding
- if {[info exists flag::binding($f)]} {
- set m [lindex [set flag::binding($f)] 0]
- if {[set proc [lindex [set flag::binding($f)] 1]] == 1} {
- set proc $f
- }
- namespace eval ::alpha [list catch "${un}Bind [keys::toBind $old] [list $proc] $m"]
- }
- }
-
- ##
- # -------------------------------------------------------------------------
- #
- # "keys::modifiersTo" --
- #
- # Turn a menu-modifier sequence into something else. Options are
- # 'verbose' (a textual description), 'bind' (a binding code-sequence),
- # and 'menu' which just returns what was given.
- # -------------------------------------------------------------------------
- ##
- proc keys::modifiersTo {key type} {
- set key1 {}
- switch -- $type {
- "verbose" {
- if {[regexp {«(.)»} $key d pref]} {
- if {$pref == "e"} {
- append key1 "escape "
- } else {
- append key1 "ctrl-$pref "
- }
- }
- if {[regexp {<U} $key]} {append key1 "shift-"}
- if {[regexp {<B} $key]} {append key1 "ctrl-"}
- if {[regexp {<I} $key]} {append key1 "opt-"}
- if {[regexp {<O} $key]} {append key1 "cmd-"}
- return $key1
- }
- "tksym" {
- if {[regexp {«(.)»} $key d pref]} {
- if {$pref == "e"} {
- append key1 "Escape "
- } else {
- append key1 "Control-$pref "
- }
- }
- if {[regexp {<U} $key]} {append key1 "Shift-"}
- if {[regexp {<B} $key]} {append key1 "Control-"}
- if {[regexp {<I} $key]} {append key1 "Option-"}
- if {[regexp {<O} $key]} {append key1 "Command-"}
- return $key1
- }
- "bind" {
- if {[regexp {<U} $key]} {append key1 "s"}
- if {[regexp {<B} $key]} {append key1 "z"}
- if {[regexp {<I} $key]} {append key1 "o"}
- if {[regexp {<O} $key]} {append key1 "c"}
- if {[regexp {«(.)»} $key d pref]} {
- append key1 $pref
- }
- if {$key1 != ""} {
- return "<${key1}>"
- } else {
- return ""
- }
- }
- "menu" {
- if {[regexp {«(.)»} $key d pref]} {
- return ""
- } else {
- return $key
- }
- }
- }
- }
-
- ##
- # -------------------------------------------------------------------------
- #
- # "keys::bindToMenu" --
- #
- # Doesn't yet cope with function keys etc, nor 0x31 type bindings,
- # nor prefixChars (which can't go in a menu anyway).
- # -------------------------------------------------------------------------
- ##
- proc keys::bindToMenu {i} {
- regexp {'(.)'[ \t]*<([^>]+)>} $i d key mods
- set key "/[string toupper $key]"
- if {[regexp {s} $mods]} {append key "<U"}
- if {[regexp {z} $mods]} {append key "<B"}
- if {[regexp {o} $mods]} {append key "<I"}
- if {[regexp {c} $mods]} {append key "<O"}
- return $key
- }
-
- ##
- # -------------------------------------------------------------------------
- #
- # "keys::findPrefixChars" --
- #
- # This proc is rather slow, since it has to scan an enormous list of
- # bindings. However since it is only used from the dialog below,
- # that doesn't matter too much (i.e. it is quick enough on my machine).
- # -------------------------------------------------------------------------
- ##
- proc keys::findPrefixChars {} {
- set menu ""
- foreach i [keys::findBindingsTo "prefixChar"] {
- if {![regexp {'(.)'[ \t]*<z>} $i d key]} {
- beep; message "A bad prefix char has been defined: Bind $i prefixChar, this will not work."
- } else {
- lappend menu [string toupper $key]
- }
- }
- return $menu
- }
-
- proc keys::findBindingsTo {to {mode ""} {lines 0}} {
- if {$mode == "*"} { set mode "(\\w+)?" }
- set t [bindingList]
- set pref ""
- while {[regexp -indices "\rBind(\[^\r\]+) $to *${mode} *\r" $t d idx]} {
- if {$lines} {
- lappend pref [string trim [eval string range [list $t] $d]]
- } else {
- lappend pref [string trim [eval string range [list $t] $idx]]
- }
- set t [string range $t [lindex $idx 1] end]
- }
- return $pref
- }
-
- proc keys::findBindingsOf {of {mode ""}} {
- if {$mode == "*"} { set mode "(\\w+)?" }
- set t [bindingList]
- set pref ""
- while {[regexp -indices "\rBind[quote::WhitespaceReg " ${of} "](\[\\w:\]+) *${mode} *\r" $t l idx]} {
- lappend pref [string trim [eval string range [list $t] $l]]
- set t [string range $t [lindex $idx 1] end]
- }
- return $pref
- }
-
- proc keys::unsetBinding {v {mode ""}} {
- foreach i [keys::findBindingsOf $v $mode] {
- regsub {' '} $i {0x31} i
- eval "un${i}"
- }
- }
-
- proc keys::bindPackage {pkg} {
- global ${pkg}modeVars flag::type flag::binding
- foreach v [array names ${pkg}modeVars] {
- if {[info exists flag::type($v)] && [set flag::type($v)] == "binding"} {
- if {[info exists flag::binding($v)]} {
- set m [lindex [set flag::binding($v)] 0]
- if {[set proc [lindex [set flag::binding($v)] 1]] == 1} {
- set proc $v
- }
- namespace eval ::alpha [list catch "Bind [keys::toBind [set ${pkg}modeVars($v)]] [list $proc] $m"]
- }
- }
- }
- }
-
- # ◊◊◊◊ Key presses ◊◊◊◊ #
- namespace eval key {}
-
- proc key::optionPressed {{m ""}} {
- if {$m == ""} {set m [getModifiers]}
- return [expr {$m & 72}]
- }
- proc key::shiftPressed {{m ""}} {
- if {$m == ""} {set m [getModifiers]}
- return [expr {$m & 34}]
- }
- proc key::controlPressed {{m ""}} {
- if {$m == ""} {set m [getModifiers]}
- return [expr {$m & 144}]
- }
- proc key::cmdPressed {{m ""}} {
- if {$m == ""} {set m [getModifiers]}
- return [expr {$m & 1}]
- }
-
- namespace eval prompt {}
- ##
- # -------------------------------------------------------------------------
- #
- # "prompt::getAKey" --
- #
- # 'getChar' is modified by ctrl and option, so if the user presses one
- # of them, we have to request the key again. Also if the user pressed
- # shift and the key wasn't A-Z, then we also have to ask again. Finally
- # if the key pressed was a non-ascii one, we have to select from a menu.
- #
- # This function is an alternative to 'dialog::getAKey'. Hence it takes
- # the same parameters, except it ignores some of them.
- #
- # Doesn't currently deal with the 'for_menu' flag which it should.
- # -------------------------------------------------------------------------
- ##
- proc prompt::getAKey {{name ""} {keystr ""} {for_menu 1}} {
- beep ; message "Press the key and modifiers"
- set char [string toupper [getChar]]
- set mod [getModifiers]
- if {$mod & 0xd8 || ($mod & 0x22) && ![regexp {[A-Z]} $char]} {
- beep; message "Please press the key again, this time without modifiers."
- set char [string toupper [getChar]]
- }
- if {![regexp {[][=A-Z0-9`\\';,./-]} $char]} {
- global keys::ascii keys::func
- set ascii [text::Ascii $char]
- if {$ascii > 27 && $ascii < 32} {
- set char [lindex {"" "" "\x10" ""} [expr {$ascii - 27}]]
- }
- set i 0
- foreach k ${keys::ascii} {
- if {[expr {$k == $ascii}]} {
- set char [text::Ascii [expr {$i + 97}] 1]
- break
- }
- incr i
- }
- if {$i == [llength ${keys::ascii}]} {
- set char [dialog::optionMenu \
- "This procedure cannot isolate which key that was. You'll have to select it manually" ${keys::func} "" 1]
- set char [text::Ascii [expr {$char + 97}] 1]
- }
- }
- set res [keys::modToMenu $mod $char]
- if {!$for_menu} {
- beep; message "If there is a prefix-char, hit that now (without the ctrl-key) else return."
- set char [string toupper [getChar]]
- if {[text::Ascii $char] == 27} { set char "e" }
- if {[regexp -nocase {[a-z]} $char]} {append res "«$char»"}
- }
- return $res
- }
-
- ##
- # cmdKey = 0x01,
- # shiftKey = 0x02,
- # alphaLock = 0x04,
- # optionKey = 0x08,
- # controlKey = 0x10,
- # rightShiftKey = 0x20,
- # rightOptionKey = 0x40,
- # rightControlKey = 0x80,
- ##
- # 'char' must be upper case, if it really is a char.
- proc keys::modToMenu {mod {char ""}} {
- if {$char != ""} {
- set t "/${char}"
- } else {
- set t ""
- }
- # cmd
- if {[expr {$mod & 1}]} { append t "<O" }
- # shift
- if {[expr {$mod & 2 | $mod & 32}]} { append t "<U" }
- # option
- if {[expr {$mod & 8 | $mod & 64}]} { append t "<I" }
- # ctrl
- if {[expr {$mod & 16 | $mod & 128}]} { append t "<B" }
- return $t
- }
-
- proc global::specialKeys {} {
- global keys::specialBindings keys::specialProcs modifiedArrVars
- # unbind old set
- bind::fromArray keys::specialBindings keys::specialProcs 1
-
- if {[hook::callAll specialKeys *]} {
- # rebind old set and return
- bind::fromArray keys::specialBindings keys::specialProcs
- return
- }
-
- if {[catch {dialog::arrayBindings "Special keys" keys::specialBindings}]} {
- # cancelled so rebind old set
- bind::fromArray keys::specialBindings keys::specialProcs
- return
- }
- # Bind new set
- bind::fromArray keys::specialBindings keys::specialProcs
- # perhaps do something else?
- lappend modifiedArrVars keys::specialBindings
- }
-
-
- ##
- # -------------------------------------------------------------------------
- #
- # "alpha::basicKeyBindings" --
- #
- # Bind all the obvious stuff, so cursor keys etc actually work!
- # -------------------------------------------------------------------------
- ##
- proc alpha::basicKeyBindings {} {
- Bind Left backwardChar
- Bind Left <c> beginningOfLine
- Bind Left <s> backwardCharSelect
- Bind Left <sc> beginningLineSelect
- Bind Left <z> {scrollLeftCol 15}
- Bind Left <o> backwardWord
- Bind Left <os> backwardWordSelect
-
- Bind Right forwardChar
- Bind Right <c> endOfLine
- Bind Right <s> forwardCharSelect
- Bind Right <sc> endLineSelect
- Bind Right <z> {scrollRightCol 15}
- Bind Right <o> forwardWord
- Bind Right <os> forwardWordSelect
-
- Bind Up previousLine
- Bind Up <s> prevLineSelect
- Bind Up <c> beginningOfBuffer
- Bind Up <sc> beginningBufferSelect
- Bind Up <z> scrollUpLine
- Bind Up <o> scrollUpLine
-
- Bind Down nextLine
- Bind Down <c> endOfBuffer
- Bind Down <s> nextLineSelect
- Bind Down <sc> endBufferSelect
- Bind Down <z> scrollDownLine
- Bind Down <o> scrollDownLine
-
- # Keypad definitions
- Bind KPad4 backwardWord
- Bind KPad4 <c> backwardDeleteWord
- Bind KPad6 forwardWord
- Bind KPad6 <c> deleteWord
- Bind Clear toggleNumLock
- # Never Bind Keypad /
- # Never Bind Keypad *
- Bind KPad0 nextWindow
- Bind KPad0 <s> prevWindow
- Bind KPad+ nextWindow
- Bind KPad- prevWindow
- Bind KPad0 pageBack
- # Bind Enter pageForward
- Bind Enter briefThing
- Bind Kpad1 prevFunc
- Bind Kpad3 nextFunc
- Bind KPad. endOfBuffer
- Bind KPad5 exchangePointAndMark
- Bind KPad7 backwardDeleteWord
- Bind KPad9 deleteWord
-
- Bind Help alphaHelp
- Bind Home beginningOfBuffer
- Bind End endOfBuffer
- Bind Pgup pageBack
- Bind Pgdn pageForward
- Bind Del deleteChar
- Bind 0x33 backSpace
- }
-
- ##
- # -------------------------------------------------------------------------
- #
- # "alpha::keyBindings" --
- #
- # Bind some 'standard' alpha key-bindings
- # -------------------------------------------------------------------------
- ##
- proc alpha::keyBindings {} {
- Bind Del <z> forwardDeleteWhitespace
- Bind 0x33 <z> forwardDeleteWhitespace
- Bind Del deleteChar
- Bind 0x33 backSpace
- Bind 0x33 <sz> forwardDeleteUntil
-
- Bind 't' <z> insertToTop
- Bind 'z' <z> pageBack
- Bind '\ ' <z> setMark
- Bind '1' <z> execAbbrev
-
- # Another control prefix.
- Bind 'q' <z> prefixChar
- Bind 't' <Q> shrinkHigh
- Bind 'b' <Q> shrinkLow
- Bind 'l' <Q> shrinkLeft
- Bind 'r' <Q> shrinkRight
- Bind 'c' <Q> chooseAWindow
- Bind 'h' <Q> winhorizontally
- Bind 'i' <Q> iconify
- Bind 'n' <Q> nextWindow
- Bind 'o' <Q> bufferOtherWindow
- Bind 'p' <Q> prevWindow
- Bind 's' <Q> swapWithNext
- Bind 'a' <Q> wintiled
- Bind 'v' <Q> winvertically
- Bind 'f' <Q> shrinkFull
- Bind '2' <Q> splitWindow
-
- Bind '\ ' <o> oneSpace
- Bind Esc startEscape
- Bind 'f' <cz> freeMem
- Bind 'h' <z> hiliteWord
-
- Bind 'm' <X> matchingLines
- Bind 's' <ze> regIsearch
- Bind 'l' <C> dividingLine
-
- # global binding for CR
- Bind '\r' bind::CarriageReturn
- Bind F1 bind::Completion
- Bind '\[' <zs> normalLeftBrace
- Bind '\]' <zs> normalRightBrace
- # Useful for C-like-modes
- Bind '\;' bind::electricSemi
- Bind '\;' <z> "insertText {;}"
- Bind 'l' <z> centerRedraw
- Bind 'l' <oz> refresh
- }
-
-
-
-
-
-
-